问题描述:
php在curl的时候报此错误:
cURL error 60: SSL certificate problem: unable to get local issuer certificate (see http://curl.haxx.se/libcurl/c/libcurl-errors.html)
根据报错后面提示的地址查询60错误:
CURLE_SSL_CACERT (60)
Peer certificate cannot be authenticated with known CA certificates.
解决方法:
关于“SSL证书问题:无法获取本地颁发者证书”错误。显然,这适用于发送CURL请求的系统(并且没有接收请求的服务器)
1)从 https://curl.haxx.se/ca/cacert.pem 下载最新的cacert.pem
2)将以下行添加到php.ini curl.cainfo={放证书的目录}/cacert.pem
3)默认情况下,FastCGI进程将每隔300秒解析新文件(如果需要,您可以通过添加几个文件来更改频率)